/* Google Font Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px 10px 120px;
  background-color: #ffffff;
  filter: drop-shadow(0 0 0.2rem rgb(100, 100, 100));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

}
.logo {
  width: 80%;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 80px;
}
.logo-img img {
  width: 100%;
}
.logo-name {
  margin-left: 30px;
  font-weight: 700;
  font-size: 20px;
  color: #28166f;
} */

/*********************** drop down nav **************************/

/* .dropdown {
  position: relative;
  display: inline-block;
  padding: 0 10px;
 
}


.dropdown-content {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: #777;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: max-height 0.5s ease-in-out;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  cursor: pointer;

}

.dropdown-content a:hover {
  background-color: #555;
  border-radius: 3px;

}

.dropdown:hover .dropdown-content {
  max-height: 400px;


} */

/*********************** TABS **************************/

/* .tabs {
  margin-left: 10%;
}
ul {
  display: flex;
  text-decoration: none;

}

li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
  padding: 10px;
}
.links {
  padding: 10px;
}
.nav-contact {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.icon {
  width: 10%;
  margin-right: 10px;
}
.phone-icon {
  width: 100%;
} */

/*********************** Service category SECTION **************************/
.service-category-container {
  margin-top: 7%;
}
.service-container {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  width: 100%;
  /* padding: 100px; */
  background-color: #1a5074;
}
.service-container-2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  /* padding: 100px; */
  background-color: #263035;
}

.img-left {
  width: 30vw;
  display: flex;
  /* justify-content: flex-end; */
}
.text-right {
  width: 55vw;
  margin-left: 100px;
}
.img-right {
  width: 30vw;
  display: flex;
  /* justify-content: flex-end; */
}
.text-left {
  width: 55vw;
  margin-right: 100px;
}
.service-img {
  width: 100%;
}
.service-header {
  margin: 10px 0;
  font-size: 2vw;
  font-weight: 800;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.2em;
  z-index: 1000;
}
.service-line {
  position: relative;
  margin: 0 0;
  width: 120px;
  height: 0;
  border-bottom: 2px solid yellow;
}
.service-para {
  margin: 20px 0;
  color: rgb(255, 255, 255);
  font-size: 1.22vw;
  line-height: 1.4em;
  text-align: justify;
}

/*********************** ANIMATION **************************/

/*********************** IMAGE LEFT & TEXT RIGHT **************************/

.img-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.5s ease-out, transform 1s ease-in;
}
.text-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease-out, transform 1s ease-in;
}
.img-left.slide-in,
.text-right.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/*********************** IMAGE RIGHT & TEXT LEFT **************************/

.img-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.5s ease-out, transform 1s ease-in;
}
.text-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease-out, transform 1s ease-in;
}
.img-right.slide-in,
.text-left.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/*********************** FOOTER SECTION **************************/

/* .footer-wrapper {
  background: rgb(159 188 195 / 80%);
}
.footer-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 80px 40px 80px;
}

.footer-logo {
  width: 100%;
}

.footer-logo-img {
  width: 70px;
}
.footer-logo-img img {
  width: 100%;
}
.footer-logo-name {
  font-weight: 700;
  font-size: 20px;
}
.footer-title {
  font-weight: 700;
  font-size: 20px;
}
.text {
  font-weight: 500;
  margin-top: 10px;
}
.text-2 {
  font-weight: 500;
  margin-top: 10px;
}
.text-3 {
  font-weight: 500;
}
.service-1 {
  margin-top: 10px;
}

.footer-strip {
  width: 100%;
  background-color: #000000;
}
.copyright {
  display: flex;
  justify-content: center;
  padding: 20px;
  color: wheat;
} */
